home *** CD-ROM | disk | FTP | other *** search
- // DlgSetDrives.cpp : implementation file
- //
-
- #include "stdafx.h"
- #include "VcdAPITest.h"
- #include "DlgSetDrives.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CDlgSetDrives dialog
-
-
- CDlgSetDrives::CDlgSetDrives(CWnd* pParent /*=NULL*/)
- : CDialog(CDlgSetDrives::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CDlgSetDrives)
- m_strDrives = _T("");
- //}}AFX_DATA_INIT
- }
-
-
- void CDlgSetDrives::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CDlgSetDrives)
- DDX_Text(pDX, IDC_VCDDRIVES, m_strDrives);
- //}}AFX_DATA_MAP
- }
-
-
- BEGIN_MESSAGE_MAP(CDlgSetDrives, CDialog)
- //{{AFX_MSG_MAP(CDlgSetDrives)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CDlgSetDrives message handlers
-